body {
    background-color: #FFF1D5;
    font-family: cursive;
}
form {
text-align : center;
font-size: 20px;
margin-top: 50px;
width: 600px;
transform: translate(450px);
}
input {
    margin-top: 20px;
}
#bt1 {
    background-color: green;
    padding: 10px;
    color : white;
    font-weight: bold;
    border-radius: 20px;
    font-family: cursive;
}
#bt2 {
    background-color: red;
    padding: 10px;
    color : white;
    font-weight: bold;
    border-radius: 20px;
    font-family: cursive;
}
.in {
    border: solid 1px black;
    text-align: center;
    font-size: 14px;
    padding-bottom: 10px;
    padding-top: 10px;
    border-radius: 10px;
}
legend {
    font-size: 50px;
    color : #ac94e4;
    text-shadow: 5px 5px 3px black;
    transition: 0.5s;
}
fieldset{
    background-image :linear-gradient();
    background-color: #b8cfea ;
    border-radius: 20px;
    transition: 0.5s;
}
input::placeholder {
    font-family: cursive;
}
fieldset:hover {
    box-shadow: 0px 0px 10px black ;
    legend {
        transform: translatey(-30px);
    }
}